home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Graphics⁄Sound
/
CTalk
/
CTalk example.c
next >
Wrap
C/C++ Source or Header
|
1990-08-09
|
406b
|
19 lines
#include "CTalk.h"
main()
{
CTalk* human;
human=new(CTalk);
human->ITalk();
human->SetRate(150);
human->SetPitch(100);
human->Say("\pHello, you little person");
human->SetRate(50);
human->Say("\pHello, you little person");
human->SetRate(150);
human->SetPitch(200);
human->Say("\pHello, you little person");
human->SetPitch(80);
human->Say("\pHello, you little person");
human->Dispose();
}